home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp737.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  167 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP737.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 913,
  39.     129: 914,
  40.     130: 915,
  41.     131: 916,
  42.     132: 917,
  43.     133: 918,
  44.     134: 919,
  45.     135: 920,
  46.     136: 921,
  47.     137: 922,
  48.     138: 923,
  49.     139: 924,
  50.     140: 925,
  51.     141: 926,
  52.     142: 927,
  53.     143: 928,
  54.     144: 929,
  55.     145: 931,
  56.     146: 932,
  57.     147: 933,
  58.     148: 934,
  59.     149: 935,
  60.     150: 936,
  61.     151: 937,
  62.     152: 945,
  63.     153: 946,
  64.     154: 947,
  65.     155: 948,
  66.     156: 949,
  67.     157: 950,
  68.     158: 951,
  69.     159: 952,
  70.     160: 953,
  71.     161: 954,
  72.     162: 955,
  73.     163: 956,
  74.     164: 957,
  75.     165: 958,
  76.     166: 959,
  77.     167: 960,
  78.     168: 961,
  79.     169: 963,
  80.     170: 962,
  81.     171: 964,
  82.     172: 965,
  83.     173: 966,
  84.     174: 967,
  85.     175: 968,
  86.     176: 9617,
  87.     177: 9618,
  88.     178: 9619,
  89.     179: 9474,
  90.     180: 9508,
  91.     181: 9569,
  92.     182: 9570,
  93.     183: 9558,
  94.     184: 9557,
  95.     185: 9571,
  96.     186: 9553,
  97.     187: 9559,
  98.     188: 9565,
  99.     189: 9564,
  100.     190: 9563,
  101.     191: 9488,
  102.     192: 9492,
  103.     193: 9524,
  104.     194: 9516,
  105.     195: 9500,
  106.     196: 9472,
  107.     197: 9532,
  108.     198: 9566,
  109.     199: 9567,
  110.     200: 9562,
  111.     201: 9556,
  112.     202: 9577,
  113.     203: 9574,
  114.     204: 9568,
  115.     205: 9552,
  116.     206: 9580,
  117.     207: 9575,
  118.     208: 9576,
  119.     209: 9572,
  120.     210: 9573,
  121.     211: 9561,
  122.     212: 9560,
  123.     213: 9554,
  124.     214: 9555,
  125.     215: 9579,
  126.     216: 9578,
  127.     217: 9496,
  128.     218: 9484,
  129.     219: 9608,
  130.     220: 9604,
  131.     221: 9612,
  132.     222: 9616,
  133.     223: 9600,
  134.     224: 969,
  135.     225: 940,
  136.     226: 941,
  137.     227: 942,
  138.     228: 970,
  139.     229: 943,
  140.     230: 972,
  141.     231: 973,
  142.     232: 971,
  143.     233: 974,
  144.     234: 902,
  145.     235: 904,
  146.     236: 905,
  147.     237: 906,
  148.     238: 908,
  149.     239: 910,
  150.     240: 911,
  151.     241: 177,
  152.     242: 8805,
  153.     243: 8804,
  154.     244: 938,
  155.     245: 939,
  156.     246: 247,
  157.     247: 8776,
  158.     248: 176,
  159.     249: 8729,
  160.     250: 183,
  161.     251: 8730,
  162.     252: 8319,
  163.     253: 178,
  164.     254: 9632,
  165.     255: 160 })
  166. encoding_map = codecs.make_encoding_map(decoding_map)
  167.